home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gimp.preinst < prev    next >
Encoding:
Text File  |  2009-03-17  |  331 b   |  12 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "install" -o "$1" = "upgrade" ]; then
  4.     # Clean up older links from this package
  5.     update-alternatives --remove gimp /usr/bin/gimp-1.2
  6.     update-alternatives --remove gimptool /usr/bin/gimptool-1.3
  7.     update-alternatives --remove gimp /usr/bin/gimp-2.0
  8.     update-alternatives --remove gimp /usr/bin/gimp-2.2
  9. fi
  10.  
  11.  
  12.